This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
Subject: pass thru HTML - how to remove leading blank line
Feedback Type: Question
Product Area: Domino Designer on Eclipse (DDE)
Technical Area: Application Development
Platform: Windows
Release: 8.5.1
Reproducible: Always
I'm using an HTML table on my form. There is a large (approximately 10-12 point) blank line in front of my table. HTML itself defaults with a blank line, which I can remove using, "<body marginwidth=0 marginheight=0 leftmargin=0 topmargin=0>." When displayed via pass thru HTML in Notes, I still have the blank line (link to image below).
How do I update the way Lotus Notes renders pass thru HTML? I want to override the default which is to include a full with blank row in front of my table.
*** here's how to remove in HTML ***
<html>
<body marginwidth=0 marginheight=0 leftmargin=0 topmargin=0>
<table>
<tr>
***TEST***
</tr>
</table>
</body>
</html>